home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_13_10
/
saks
/
kr1.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-08-03
|
281 b
|
20 lines
Listing 3 - Examples of the K & R
indenting style applied C/C++ if-else and
while statements.
if (expression) {
statement;
statement;
...
} else {
statement;
statement;
...
}
while (expression) {
statement;
statement;
...
}